home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d6 / icp51.arc / PRINT.BAT < prev    next >
DOS Batch File  |  1991-03-27  |  274b  |  22 lines

  1. @echo off
  2. cls
  3.  
  4. if "%1==" goto hlpinst
  5.  
  6. :loop1
  7. cls
  8. copy %1 prn
  9. goto end
  10.  
  11. :hlpinst
  12. cls
  13. echo The correct syntax is "print <file.ext>". For example, type "print 
  14. echo readme.doc" to print the readme.doc file.
  15. echo .
  16. echo PRINTING ABORTED!
  17. goto end
  18.  
  19. :end
  20.  
  21.  
  22.